home *** CD-ROM | disk | FTP | other *** search
/ 130 MIDI Tool Box / 130 MIDI Tool Box.iso / m1sysex / m1sysex.txt
Text File  |  1989-08-18  |  2KB  |  60 lines

  1.      Here is the M1's sysex implementation for ALL, COMBOS, 
  2. GLOBALS, and SEQS.  This is for INTERNAL banks only, not stuff 
  3. stored externally on RAM cards.  Everything is in hex, unless 
  4. noted.  "n" is MIDI channel #, and "*" is where MIDI data begins.
  5.  
  6.      VoicE bulk data info is in parentheses, where:
  7.                (HHHH) = header offset
  8.                (HHHH) = voice name position
  9.                (HHHH) = # of bytes in one voice
  10.                (HHHH) = checksum byte position 
  11.                (HHHH) = # of voices in bank
  12.                (HHHH) = bank header offset
  13.                (HHHH) = # of banks in dump
  14.                   HH  = voice name length
  15.                   HH  = bit field 1
  16.                   HH  = bit field 2
  17.  
  18. ALL:
  19.  
  20.      ALL dump request:  F0, 42, 3n, 19, 0F, 00, F7
  21.  
  22.      Response from M1:  F0, 42, 3n, 19, 50, *, F7
  23.  
  24.  
  25. COMBO:
  26.  
  27.      COMBO dump request:  F0, 42, 3n, 19, 1D, OO, F7
  28.      
  29.      Response from M1:  F0, 42, 3n, 19, 4D, *, F7
  30.       voice bulk data:  (0001) (0000) (007C) (0000) (0064)
  31.                         (0000) (0000) 0A 10 00
  32.  
  33.  
  34. GLOBAL:
  35.  
  36.      GLOBAL dump request:  F0, 42, 3n, 19, 0E, 00, F7
  37.  
  38.      Response from M1:  F0, 42, 3n, 19, 51, *, F7
  39.  
  40.  
  41. SEQUENCE:
  42.  
  43.      SEQ dump request:  F0, 42, 3n, 19, 18, 00, F7
  44.  
  45.      Response from M1:  F0, 42, 3n, 19, 48, *, F7
  46.  
  47.  
  48. SOUNDS:
  49.  
  50.      SOUNDS dump request:  F0, 42, 3n, 19, 1C, 00, F7
  51.  
  52.      Response from M1:  F0, 42, 3n, 19, 4C, *, F7
  53.       Voice bulk data:  (0001) (0000) (008F) (0064)
  54.                         (0000) (0000) 0A 10 00
  55.  
  56.  
  57.  
  58.  
  59.  
  60.